home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / ctype / isxdigit.c < prev    next >
C/C++ Source or Header  |  1988-04-27  |  1KB  |  46 lines

  1. /* 
  2.  * isxdigit.c --
  3.  *
  4.  *    Contains the C library procedure "isxdigit".
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: isxdigit.c,v 1.1 88/04/27 18:03:42 ouster Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include "ctype.h"
  21. #undef isxdigit
  22.  
  23. /*
  24.  *----------------------------------------------------------------------
  25.  *
  26.  * isxdigit --
  27.  *
  28.  *    Tell whether a character is a hexadecimal digit or not.
  29.  *
  30.  * Results:
  31.  *    Returns non-zero if c is a hexadecimal digit, zero otherwise.
  32.  *
  33.  * Side effects:
  34.  *    None.
  35.  *
  36.  *----------------------------------------------------------------------
  37.  */
  38.  
  39. int
  40. isxdigit(c)
  41.     int c;            /* Character value to test.  Must be an
  42.                  * ASCII value or EOF. */
  43. {
  44.     return ((_ctype_bits+1)[c] & (CTYPE_DIGIT|CTYPE_HEX_DIGIT));
  45. }
  46.